home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power CD-ROM!! 8
/
Power CD-ROM 8.iso
/
windows
/
winbatch
/
ddetest.wb_
< prev
next >
Wrap
Text File
|
1994-05-20
|
2KB
|
55 lines
;;Call script for Adding/Deleting/Showing Program Manager Groups and Icons.
;;Written February 1994 by Wilson WindowWare, Inc.
;;Call Progman.wil
;;
;;Syntax of commands:
;; Call("progman.wil", "AddGroup 'Group Title'")
;; ( , "DelGroup 'Group Title'")
;; ( , "AddIcon 'Group Title' 'File and Path' 'Icon Description'")
;; ( , "DelIcon 'Group Title' 'Icon Description'")
;; ( , "ShowGroup 'Group Title' ShowCommand")
;; ( , "ReplaceItem "Group Title' 'Icon Description'")
;; ( , "Reload 'Group Title'")
;;Show command is an integer which specifies the action Program Manager is to perform on the group window.
;; VALUE ACTION
;; 1 Restores group to its original size and position.
;; 2 Displays group as an icon.
;; 3 Displays group as a maximized window.
;; 6 Minimizes the group window.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Call("progman.wil", "ADDGroup 'Musk Oil' ")
delay(2)
Call("Progman.wil", "AddIcon 'Frog Legs' 'C:\windows\clock.exe' 'tick tock' ")
delay(2)
Call("progman.wil", "DelGroup 'Musk Oil' ")
delay(2)
Call("Progman.wil", "ReplaceItem 'FrogLegs' 'tick tock'")
delay(2)
Call("Progman.wil", "AddIcon 'Frog Legs' 'C:\WINDOWS\NOTEPAD.EXE' 'Notepad' ")
delay(2)
Call("progman.wil", "DelIcon 'Frog Legs' 'Notepad'")
delay(2)
Call("progman.wil", "DelGroup 'Frog Legs' ")
delay(2)
Call("Progman.wil", "ShowGroup 'Main' 1 ")
delay(2)
Call("Progman.wil", "ShowGroup 'Main' 2 ")
delay(2)
Call("Progman.wil", "ShowGroup 'Main' 3 ")
delay(2)
Call("Progman.wil", "ShowGroup 'Main' 6 ")
delay(2)
Call("Progman.wil", "Reload 'Accessories'")